System.Array.ForEach 方法

方法描述

对指定数组的每个元素执行指定操作。

语法定义(C# System.Array.ForEach 方法 的用法)

public static void ForEach(
	T[] array,
	Action action
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
array T[] 从零开始的一维 Array,要对其元素执行操作。
action System-Action 要对 array 的每个元素执行的 Action
返回值 void

提示和注释

Action 是对方法的委托,它对传递给自己的对象执行操作。 array 的元素被逐个传递给 Action

此方法的运算复杂度为 O(n),其中 n 是 array 的 Length。

System.Array.ForEach 方法例子

下面的示例演示如何使用 ForEach 来显示整数数组中的每个元素的平方。

using System;

public class SamplesArray
{
    public static void Main()
    {
        // create a three element array of integers
        int[] intArray = new int[] {2, 3, 4};

        // set a delegate for the ShowSquares method
        Action action = new Action(ShowSquares);

        Array.ForEach(intArray, action);
    }

    private static void ShowSquares(int val)
    {
        Console.WriteLine("{0:d} squared = {1:d}", val, val*val);
    }
}

/*
This code produces the following output:

2 squared = 4
3 squared = 9
4 squared = 16
*/

异常

异常 异常描述
ArgumentNullException
  • array 为 null。
  • action 为 null。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。